From: Keir Fraser Date: Tue, 30 Jun 2009 15:00:29 +0000 (+0100) Subject: VT-d: Remove the dprintk() in alloc_pgtable_maddr() X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~13669 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=8d7ad8b7aa928846052f357ebceb6d6852dc7243;p=xen.git VT-d: Remove the dprintk() in alloc_pgtable_maddr() The trivial message is printed too many when xen boots and when we create hvm guests with devices assigned. Signed-off-by: Dexuan Cui --- diff --git a/xen/drivers/passthrough/vtd/iommu.c b/xen/drivers/passthrough/vtd/iommu.c index e471e815ed..72b76ce354 100644 --- a/xen/drivers/passthrough/vtd/iommu.c +++ b/xen/drivers/passthrough/vtd/iommu.c @@ -145,10 +145,6 @@ u64 alloc_pgtable_maddr(struct acpi_drhd_unit *drhd, unsigned long npages) u64 *vaddr; rhsa = drhd_to_rhsa(drhd); - if ( !rhsa ) - dprintk(XENLOG_INFO VTDPREFIX, - "IOMMU: RHSA == NULL, IO NUMA memory allocation disabled\n"); - pg = alloc_domheap_pages(NULL, get_order_from_pages(npages), rhsa ? rhsa->domain : 0); if ( !pg )